home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
c
/
stdio
/
RCS
/
fscanf.c,v
< prev
next >
Wrap
Text File
|
1991-12-02
|
4KB
|
221 lines
head 1.6;
branch ;
access ;
symbols sprited:1.6.1;
locks ; strict;
comment @ * @;
1.6
date 88.07.28.17.18.37; author ouster; state Exp;
branches 1.6.1.1;
next 1.5;
1.5
date 88.07.28.16.41.12; author ouster; state Exp;
branches ;
next 1.4;
1.4
date 88.07.25.14.11.59; author ouster; state Exp;
branches ;
next 1.3;
1.3
date 88.07.21.09.37.30; author ouster; state Exp;
branches ;
next 1.2;
1.2
date 88.07.11.16.02.18; author ouster; state Exp;
branches ;
next 1.1;
1.1
date 88.06.10.16.23.50; author ouster; state Exp;
branches ;
next ;
1.6.1.1
date 91.12.02.19.58.00; author kupfer; state Exp;
branches ;
next ;
desc
@@
1.6
log
@More lint.
@
text
@/*
* fscanf.c --
*
* Source code for the "fscanf" library procedure.
*
* Copyright 1988 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*/
#ifndef lint
static char rcsid[] = "$Header: fscanf.c,v 1.5 88/07/28 16:41:12 ouster Exp $ SPRITE (Berkeley)";
#endif not lint
#include <stdio.h>
#include <varargs.h>
/*
*----------------------------------------------------------------------
*
* fscanf --
*
* Same as scanf, except take input from a given I/O stream
* instead of stdin.
*
* Results:
* The values indicated by va_alist are modified to hold
* information scanned from stream. The return value is the
* number of fields successfully scanned, or EOF if the string
* is empty.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
#ifndef lint
int
fscanf(va_alist)
va_dcl /* FILE *stream, then char *format, then
* pointers to variables to be filled in
* with values scanned under control of
* format. */
{
FILE *stream;
char *format;
va_list args;
va_start(args);
stream = va_arg(args, FILE *);
format = va_arg(args, char *);
return vfscanf(stream, format, args);
}
#else
/* VARARGS2 */
/* ARGSUSED */
int
fscanf(stream, format)
FILE *stream;
char *format;
{
return 0;
}
#endif lint
@
1.6.1.1
log
@Initial branch for Sprite server.
@
text
@d17 1
a17 1
static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fscanf.c,v 1.6 88/07/28 17:18:37 ouster Exp $ SPRITE (Berkeley)";
@
1.5
log
@Still cleaning stuff related to lint libraries.
@
text
@d17 1
a17 1
static char rcsid[] = "$Header: fscanf.c,v 1.4 88/07/25 14:11:59 ouster Exp $ SPRITE (Berkeley)";
d62 1
@
1.4
log
@Generate more complete lint library information.
@
text
@d17 1
a17 1
static char rcsid[] = "$Header: fscanf.c,v 1.3 88/07/21 09:37:30 ouster Exp $ SPRITE (Berkeley)";
d43 1
a43 1
#ifndef LINTLIB
d69 1
a69 1
#endif LINTLIB
@
1.3
log
@Change to use vfscanf instead of _doscan.
@
text
@d17 1
a17 1
static char rcsid[] = "$Header: fscanf.c,v 1.2 88/07/11 16:02:18 ouster Exp $ SPRITE (Berkeley)";
d43 1
a43 1
/* VARARGS0 */
d60 10
@
1.2
log
@If using varargs, don't have any arguments preceding the va_alist.
@
text
@d17 1
a17 1
static char rcsid[] = "$Header: fscanf.c,v 1.1 88/06/10 16:23:50 ouster Exp $ SPRITE (Berkeley)";
d58 1
a58 1
return _doscan(format, &args, stream);
@
1.1
log
@Initial revision
@
text
@d17 1
a17 1
static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
d20 2
a21 2
#include "stdio.h"
#include "varargs.h"
d43 1
d45 5
a49 7
fscanf(stream, format, va_alist)
FILE *stream; /* Source for input characters to parse. */
char *format; /* Contains literal text and format control
* sequences indicating how string is to be
* parsed. See the manual page for details. */
va_dcl /* Variable number of values to be formatted
* and printed. */
d51 2
d56 2
@